{% extends "base.html" %} {% block title %}Прохождение теста{% endblock %} {% block content %}

{{ test.title }}

Всего вопросов: {{ question_payload|length }}

Отмена
{% if time_limit_minutes and remaining_seconds is not none %}
Лимит времени: {{ time_limit_minutes }} мин {% if expires_at_local %} Завершить до: {{ expires_at_local.strftime('%d.%m.%Y %H:%M:%S') }} Оставшееся время: {{ remaining_time_display }} {% endif %}
{% endif %}
{{ form.hidden_tag() }} {% for question, answers in question_payload %}

{{ loop.index }}. {{ question.question_text }}

Тип: {{ 'Одиночный выбор' if question.question_type == 'single' else 'Множественный выбор' }}

{% if question.question_type == 'single' %} {% for answer in answers %}
{% endfor %} {% else %} {% for answer in answers %}
{% endfor %} {% endif %}
{% endfor %}
Проверьте выбранные ответы перед отправкой {{ form.submit(class="btn btn-success btn-lg") }}
{% endblock %}